home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 015a / tsbat30.zip / safedel1.bat < prev    next >
DOS Batch File  |  1990-12-28  |  408b  |  14 lines

  1. echo off
  2. rem An auxiliary batch for safedel.bat safe deletion of files
  3. rem This batchs asks for the confirmation, and deletes a single file
  4. :_loop1
  5. set _reply=
  6. ask Delete %1 (y or n)? /d /u
  7. if errorlevel==89 if not errorlevel==90 set _reply=yes
  8. if errorlevel==78 if not errorlevel==79 set _reply=no
  9. if "%_reply%"=="" echo 
  10. if "%_reply%"=="" goto _loop1
  11. if "%_reply%"=="yes" del %1
  12. set reply=
  13. 
  14.